home *** CD-ROM | disk | FTP | other *** search
- Exit %ProcType%
-
- %sProcName%_ErrorHandler:
- intVCoder_Retry = intVCoder_Retry + 1
-
- If intVCoder_Retry > 100 Then
- Select Case MsgBox("Error " & Err.Number & ": " & vbCrLf & Err.Description & vbCrlf & "Occurred at line " & Erl & vbCrlf & " in " & App.Title & ": %sModule%.%sProcName%", vbAbortRetryIgnore + vbExclamation, App.Title & " Error.")
- Case vbAbort
- Resume Exit_%sProcName%
- Case vbRetry
- Resume
- Case vbIgnore
- Resume Next
- End Select
- Else
- Resume
- End If
-
- Exit_%sProcName%: